home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / doom / dmtc10.zip / DMTC.BAT next >
DOS Batch File  |  1996-01-21  |  5KB  |  148 lines

  1. @echo off
  2. :intro
  3. cls
  4. echo Title             :  DethMatch Training Center v1.0
  5. echo Filename          :  DMTC.WAD
  6. echo Author            :  Rick Olson - level designer 
  7. echo                   [Killjoy on Cyberplay BBS]
  8. echo Email Address     :  insomni@aol.com
  9. echo.
  10. echo Misc Author Info  :  High Schooler with too much
  11. echo                      time on his hands.  This is my
  12. echo                      second released level.
  13. echo.
  14. echo Description       :  The intuitive UAC engineers designed
  15. echo                    the perfect area for marines to practice
  16. echo                    their deathmatching skills and they titled
  17. echo                    it the DethMatch Training Center.  Since it 
  18. echo                    is located in a remote area, teleporters 
  19. echo                    are needed to travel to and from it quickly.
  20. echo There's more, just press a key!
  21. pause > nul
  22. cls
  23. echo Credits to        :  Bill McClendon, the author of the Wad 
  24. echo                    Handbook.
  25. echo.
  26. echo                      id Software for making this kick ass game!
  27. echo.
  28. echo.
  29. echo More to come!
  30. pause > nul
  31. :menu
  32. cls
  33. echo Menu for The DethMatch Training Center
  34. echo.
  35. echo A  Play Information
  36. echo B  Construction
  37. echo C  Copyright/Permissions
  38. echo D  Where to get this wad
  39. echo E  Play this wad
  40. echo F  Closing
  41. echo G  Intro
  42. echo H  Quit
  43. echo.
  44. echo Choose an Option [ABCDEFGH]
  45. choice /c:ABCDEFGH
  46. if errorlevel 8 goto end
  47. if errorlevel 7 goto intro
  48. if errorlevel 6 goto close
  49. if errorlevel 5 goto play
  50. if errorlevel 4 goto where
  51. if errorlevel 3 goto copyright
  52. if errorlevel 2 goto construct
  53. if errorlevel 1 goto info
  54. :info
  55. cls
  56. echo Levels Replaced        :   Map01
  57. echo Single Player          :   Yeah, to look around
  58. echo Co-op 2-4 Player       :   Yeah, but why?
  59. echo Deathmatch 2-4 Player  :   YESSSS!!
  60. echo Difficulty Settings    :   Huh?
  61. echo New Sounds             :   Yes!
  62. echo New Graphics           :   Yes, some textures and stuff
  63. echo New Music              :   Yes, "Smells Like Teen Spirit"
  64. echo                                    by Nirvana
  65. echo Demos                  :   No, but hopefully in a later version
  66. echo.
  67. echo (I)ntro, (M)enu, or (Q)uit?
  68. choice /c:IMQ
  69. if errorlevel 3 goto end
  70. if errorlevel 2 goto menu
  71. if errorlevel 1 goto intro
  72. :construct
  73. cls
  74. echo Base          : You see, I had this idea in my head...
  75. echo Editors used  : DoomCad v6.1, Wintex v4.1, RMB, ZenNode
  76. echo Build time    : 7 hours or so
  77. echo Known bugs    : None!  If you find one, email me
  78. echo.
  79. echo (I)ntro, (M)enu, or (Q)uit?
  80. choice /c:IMQ
  81. if errorlevel 3 goto end
  82. if errorlevel 2 goto menu
  83. if errorlevel 1 goto intro
  84. :copyright
  85. cls
  86. echo Authors MAY use this level as a base to build additional
  87. echo levels.  But wouldn't it be more satisfying if you used 
  88. echo your own design???  Anyway, if you do use it, send it 
  89. echo to me so I can take a look at it!
  90. echo.
  91. echo You MAY distribute this WAD, provided you include this
  92. echo file with no modifications.  You may upload this file 
  93. echo anywhere.  
  94. echo.
  95. echo (I)ntro, (M)enu, or (Q)uit?
  96. choice /c:IMQ
  97. if errorlevel 3 goto end
  98. if errorlevel 2 goto menu
  99. if errorlevel 1 goto intro
  100. :where
  101. cls
  102. echo BBS        :Cyberplay BBS [408-975-0100]
  103. echo             Phone Cops Donut Shop [316-364-8584]
  104. echo.
  105. echo    and wherever you Doomers upload it
  106. echo.
  107. echo (I)ntro, (M)enu, or (Q)uit?
  108. choice /c:IMQ
  109. if errorlevel 3 goto end
  110. if errorlevel 2 goto menu
  111. if errorlevel 1 goto intro
  112. :play
  113. cls
  114. echo    ***Warning***
  115. echo This batch file is assuming that it is in the 
  116. echo directory with DMTC.WAD in it and DOOM ][ [of course].
  117. echo If that is not the case, run this wad like you would 
  118. echo any other wad.
  119. echo.
  120. echo Stop the batch file to run the wad your way or  
  121. echo press anykey to let the batch file run it.
  122. echo Here is the command line the batch file will use:
  123. echo doom2 -file dmtc.wad 
  124. pause > nul
  125. doom2 -file dmtc.wad
  126. :close
  127. cls
  128. echo This is my second Deathmatch wad I have released.
  129. echo The other wad [Earth2] was cool but kept giving 
  130. echo consistency failures.  I made this wad so I could
  131. echo distribute a wad that actually works :)
  132. echo.
  133. echo If anyone wants to change and align the textures/floors
  134. echo of this level, email me.  This is one aspect of wad
  135. echo building I am not good at.
  136. echo.
  137. echo If anyone wants to take a look at Earth2, email me.  I 
  138. echo have no idea what the error is from.  
  139. echo.
  140. echo (I)ntro, (M)enu, or (Q)uit?
  141. choice /c:IMQ
  142. if errorlevel 3 goto end
  143. if errorlevel 2 goto menu
  144. if errorlevel 1 goto intro
  145. :end
  146.  
  147.  
  148.